int x = 5; // Sets the horizontal position of the lines
int y = 60; // Sets the vertical position of the lines
line(x, y, x+20, y-40); // Draws line from [5,60] to [25,20]
line(x+10, y, x+30, y-40); // Draws line from [15,60] to [35,20]
line(x+20, y, x+40, y-40); // Draws line from [25,60] to [45,20]
line(x+30, y, x+50, y-40); // Draws line from [35,60] to [55,20]
line(x+40, y, x+60, y-40); // Draws line from [45,60] to [65,20]
